home *** CD-ROM | disk | FTP | other *** search
/ CDUTIL 13 / CDUTIL #13 Julio 1995.iso / windows / acadwin / support / ddattext.dcl < prev    next >
Encoding:
Text File  |  1995-02-08  |  4.0 KB  |  150 lines

  1. // Next available MSG number is    26 
  2. // MODULE_ID DDATTEXT_DCL_
  3. /* Next available MSG number is  26 */
  4. //
  5. //     ddattext.dcl
  6. //
  7. //     Copyright (C) 1992, 1994 by Autodesk, Inc.
  8. //
  9. //     Permission to use, copy, modify, and distribute this software
  10. //     for any purpose and without fee is hereby granted, provided
  11. //     that the above copyright notice appears in all copies and
  12. //     that both that copyright notice and the limited warranty and
  13. //     restricted rights notice below appear in all supporting
  14. //     documentation.
  15. //
  16. //     AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
  17. //     AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
  18. //     MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.  AUTODESK, INC.
  19. //     DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
  20. //     UNINTERRUPTED OR ERROR FREE.
  21. //
  22. //     Use, duplication, or disclosure by the U.S. Government is subject to
  23. //     restrictions set forth in FAR 52.227-19 (Commercial Computer
  24. //     Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
  25. //     (Rights in Technical Data and Computer Software), as applicable.
  26. //
  27. //.
  28. //---------------------------------------------------------------------
  29. //
  30. // Dialogue definition file for DDATTEXT.LSP - Attribute extraction
  31. //
  32.  
  33.  
  34. //dcl_settings : default_dcl_settings { audit_level = 3; }
  35.  
  36.  
  37. ddattext : dialog {
  38.     label = "Extracci≤n de atributos";
  39.     : boxed_radio_column {
  40.         label = "Formato de archivo";
  41.         : radio_button {
  42.             label = "Delimitado por comas (CDF)";
  43.             key = "cdf";
  44.             mnemonic = "C";
  45.            }
  46.            : radio_button {
  47.             label = "Delimitado por espacios (SDF)";
  48.             key = "sdf";
  49.             mnemonic = "S";
  50.         }
  51.            : radio_button {
  52.             label = "Intercambio de dibujos (DXF)";
  53.             key = "dxf";
  54.             mnemonic = "D";
  55.         }
  56.     }
  57.     : row {
  58.         : button {
  59.             label = "Designar objetos <";
  60.             mnemonic = "o";
  61.             key = "selobjs";
  62.             fixed_width = true;
  63.         }
  64.         : concatenation {
  65.             : text_part {
  66.                 label = "Encontrados: ";
  67.             }
  68.             : text_part {
  69.                 key = "how_many";
  70.                 width = 5;
  71.             }
  72.         }
  73.     }
  74.     : row {
  75.         : button {
  76.             label = "Archivo de plantilla... ";
  77.             key = "select_temp_file";
  78.             mnemonic = "p";
  79.         }
  80.         : edit_box {
  81.             edit_width = 20;
  82.             key = "temp_file";
  83.             fixed_width = true;
  84.         }
  85.     }
  86.     : row {
  87.         : button {
  88.             label = "Archivo de salida... ";
  89.             key = "select_out_file";
  90.             mnemonic = "A";
  91.         }
  92.         : edit_box {
  93.             edit_width = 20;
  94.             key = "out_file";
  95.             fixed_width = true;
  96.         }
  97.     }
  98.     ok_cancel_help_errtile;
  99. }
  100.  
  101. out_exists : dialog {
  102.     label = "Advertencia";
  103.     : paragraph {
  104.         : text_part {
  105.             label = "Este archivo de salida ya existe.";
  106.         }
  107.         : text_part {
  108.             label = "┐Desea reemplazarlo?";
  109.         }
  110.     }
  111.     spacer_1;
  112.     : row {
  113.         fixed_width = true;
  114.         alignment = centered;
  115.         : button {
  116.             label = "Sφ";
  117.             mnemonic = "S";
  118.             key = "yes";
  119.             width = 8;
  120.         }
  121.         : spacer {
  122.             width = 2;
  123.         }
  124.         : default_button {
  125.             label = "No";
  126.             mnemonic = "N";
  127.             key = "no";
  128.             width = 8;
  129.         }
  130.     }
  131. }
  132.  
  133. out_temp : dialog {
  134.     label = "Advertencia";
  135.     : paragraph {
  136.         : text_part {
  137.             label = "El archivo de estructura y el de salida tienen el mismo nombre.";
  138.         }
  139.         : text_part {
  140.             label = "Por favor cambie el nombre de archivo salida.";
  141.         }
  142.     }
  143.     spacer_1;
  144.     : ok_button {
  145.         is_cancel = true;
  146.     }
  147. }
  148.  
  149.  
  150.